home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 424_02 / ED-157 / cmd_def.h < prev    next >
Text File  |  1993-11-07  |  2KB  |  152 lines

  1. /* Included by: COMMAND */
  2. /* NOTE: changes to this file must have corresponding changes in cmd_enum.h */
  3. Char *commands[] =
  4. {
  5. "exit",
  6. "quit",
  7. "help",
  8. "set",
  9. "show",
  10. "stor",
  11. "rest",
  12. "incl",
  13. "writ",
  14. "calc",
  15. "date",
  16. "time",
  17. "abor",
  18. "grep",
  19. "byte",
  20. "file",
  21. "trim",
  22. "cd",
  23. "pwd",
  24. "bigg",
  25. "smal",
  26. "load",
  27. "unlo",
  28. "sort",
  29. "book",
  30. "dele",
  31. "perg",
  32. "subs"
  33. };
  34.  
  35. Char *params[] =
  36. {
  37. "shel",
  38. "tabs",
  39. "wrap",
  40. "sect",
  41. "word",
  42. "page",
  43. "para",
  44. "sear",
  45. "stab",
  46. "clos",
  47. "pare",
  48. "defa",
  49. "auto",
  50. "cfri",
  51. "box ",
  52. "awrp",
  53. "case",
  54. "over",
  55. "grep",
  56. "wild",
  57. "posi",    /* from this point onward, reserved for nonsettable params (see NUM_NONSETTABLE above) */
  58. "modi",
  59. "vers",
  60. "keys"
  61. };
  62.  
  63. Char *prompts[] =
  64. {
  65. "Shell",
  66. "Tab setup",
  67. "Wrap margin",
  68. "Section lines",
  69. "Word delimiters",
  70. "Page delimiter",
  71. "Paragraph delimiter",
  72. "Search mode",
  73. "Search table",
  74. "Paren matching",
  75. "Parenthesis pairs",
  76. "Default extensions",
  77. "Auto tabs",
  78. "C-friendly mode",
  79. "Box cut mode",
  80. "Auto wrap",
  81. "Case change",
  82. "Overstrike",
  83. "GREP mode",
  84. "Search wildcard",
  85. "Current position",
  86. "Buffer modified",
  87. "ED version number"
  88. };
  89.  
  90. Char *smodes[] =
  91. {
  92. "gene",
  93. "exac",
  94. "begi",
  95. "end",
  96. "nowi",
  97. "wild",
  98. "nota",
  99. "tabl",
  100. "rege",
  101. "nore",
  102. "char",
  103. "word"
  104. };
  105.  
  106. Char *sprompts[] =
  107. {
  108. "General",
  109. "Exact",
  110. "Beginning",
  111. "End",
  112. "No wild",
  113. "Wildcard",
  114. "No table",
  115. "Table",
  116. "Regex",
  117. "No Regex",
  118. "Character",
  119. "Word"
  120. };
  121.  
  122. Char *offon[] =
  123. {
  124. "off",
  125. "on",
  126. "toggle"
  127. };
  128.  
  129. Char *cases[] = 
  130. {
  131. "uppe",
  132. "lowe",
  133. "oppo",
  134. "capi"
  135. };
  136.  
  137. Char *caseprompts[] =
  138. {
  139. "Upper",
  140. "Lower",
  141. "Opposite",
  142. "Capitalize"
  143. };
  144.  
  145. Char *grepmodes[] =
  146. {
  147. "verbose",
  148. "silent",
  149. "toggle"
  150. };
  151. /* end */
  152.